home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1998 August
/
PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso
/
handson
/
supercede
/
Knowodys
/
Projects
/
Hello
/
1.0.2
/
HelloApplication.txt
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-07-30
|
375 b
|
20 lines
import java.io.*;
public class HelloApplication {
public HelloApplication () {
}
public static void main(String args[]) throws IOException{
System.out.println("\n Hello World\n");
// these two lines hold the application window open until
// the user hits <enter>
System.in.read();
System.exit(0);
}
}